home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 5
/
Apprentice-Release5.iso
/
Source Code
/
C
/
Applications
/
Python 1.3.3
/
stdwin
/
Gen
/
wsetselection.c
< prev
next >
Wrap
Text File
|
1995-12-21
|
354b
|
32 lines
/* Dummy Selection Interface (always fails) */
#include "stdwin.h"
#include "tools.h"
/*ARGSUSED*/
int
wsetselection(win, sel, data, len)
WINDOW *win;
int sel;
char *data;
int len;
{
return 0;
}
/*ARGSUSED*/
char *
wgetselection(sel, len_return)
int sel;
int *len_return;
{
return NULL;
}
/*ARGSUSED*/
void
wresetselection(sel)
int sel;
{
}